home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-07 / sound.exe / SOUND.DOC < prev    next >
Text File  |  1992-04-30  |  6KB  |  132 lines

  1.             Sounding Board (tm) Sound Information File (SOUND.DOC)
  2.                 ----------------------------------------------
  3.                           (C) 1992 ARTISOFT, Inc.
  4.                              (Revised 7/27/92)
  5.  
  6.  
  7. Your diskette contains--
  8.  
  9.      Windows Driver Files:
  10.           VASBID.386       Windows enhanced mode driver
  11.           SNDBRD.DRV       Windows standard mode driver
  12.           SASBID.DLL       Windows Sounding Board driver
  13.           ASBCVT.DLL       Used by the Sounding Board driver
  14.  
  15.      Windows ArtiSound Files:
  16.           ASR.EXE          ArtiSound (tm) software for playing and recording 
  17.                            sound while running under Windows.
  18.           ASR.HLP          Used by ArtiSound to display helpful information.
  19.  
  20.      Windows Install Files:
  21.           INSTALL.EXE      Used to install ArtiSound and/or the Sounding
  22.                            Board Driver.
  23.           REGLOAD.EXE      Used by the INSTALL.EXE.
  24.           INI.REG          Used by the INSTALL.EXE.
  25.           INSTAL1.INF      Used by the INSTALL.EXE.
  26.           INSTAL2.INF      Used by the INSTALL.EXE.
  27.           OEMSETUP.INF     Used by Windows to install the Sounding Board
  28.                            driver.
  29.  
  30.      Windows Programmers Files:
  31.           ASBCVT.LIB       Library of routines to convert between different
  32.                            Sound file formats.
  33.           ASBCVT.H         Include file to be used with ASBCVT.LIB.
  34.           ASNDBRD.H        Include file to be used to interface with the 
  35.                            Sounding Board driver.                           
  36.  
  37.      DOS Program Files:
  38.           HTEST.EXE        Diagnostic program for the handset
  39.           SOUNDBD.EXE      Driver software for the Sound adapter
  40.           LTEST.EXE        Diagnostic program for the RCA in/out jacks
  41.           RECORD.EXE       Program for testing the adapter's recording
  42.                            functions for both the RCA input jack and handset.
  43.           SAY.EXE          Program for testing the adapter's playing
  44.                            functions for both the RCA input jack and handset.
  45.  
  46.      DOS Data Files:
  47.           ARTIBLAB.SPK     Sample message file for DOS.
  48.           ARTIBLAB.WAV     Sample message file for Windows.
  49.           TEST.DAT         Test data for HTEST.EXE and LTEST.EXE
  50.  
  51.      .DOC Files:
  52.           SOUND.DOC        This file
  53.           ASBTEST.DOC      Documention for using HTEST.EXE, LTEST.EXE,
  54.                            RECORD.EXE and SAY.EXE
  55.  
  56.      DOS Install Files:
  57.           PCSETUP.BAT      File to copy the necessary DOS files to the
  58.                            specified directory.
  59.  
  60.  
  61. Thank you for purchasing the Sounding Board (tm) adapter. The printed
  62. manual enclosed with your adapter describes software and hardware
  63. installation in detail.
  64.  
  65. Four executable programs have been included on the distribution disk
  66. which are not described in the manual. HTEST, LTEST, RECORD, and SAY
  67. are primarily for diagnostic purposes and their operation is described in
  68. ASBTEST.DOC. SOUNDBD.EXE is the only file which you must copy for
  69. the sound adapter to function. You may find SAY and RECORD to be useful
  70. as well.
  71.  
  72. Remember to make a backup of your distribution diskette before you begin
  73. installation. Also, fill out and return your registration form, so that
  74. you will be notified of upgrades, etc.
  75.  
  76. ADDENDUM TO USER'S MANUAL:
  77.  
  78. One compatibility problem has been noted that occurs when the sound
  79. drivers are used on certain '386 machines with '286 BIOS (specifically,
  80. Everex 386 machines). When these computers are used with background
  81. software (specifically, disk-caching programs) which use extended
  82. memory, the DMA channel page register values are overwritten during
  83. the extended memory move operations. Since the sound adapter uses
  84. DMA concurrently with the caching mechanism, Sound DMA is redirected
  85. to incorrect memory addresses, resulting in random noise at the
  86. earpiece during playback, and in system crashes during record operations.
  87. The DMA page register appears to be stepped on during the switch into
  88. protected mode, which in '286 BIOS is accomplished by resetting the
  89. processor.
  90.  
  91. There is no real fix to this problem, other than correcting the
  92. Everex motherboard implementation, using a '386 BIOS to avoid
  93. the RESET, or replacing the BIOS "Move Extended Memory" function
  94. with a TSR that implements it correctly.
  95.  
  96. Until such a fix is available, a switch has been added to the SOUNDBD
  97. driver program which partially overcomes the problem. Simply install
  98. with the keyword "FIX_DMA_PAGE" switch on the command line, as in:
  99.  
  100.           SOUNDBD VERBOSE FIX_DMA_PAGE
  101.  
  102. This will cause sound activity to be temporarily suspended during
  103. extended memory moves. The result will be noticable "glitches" in
  104. playback and recording, but no noise or system crashes. You should
  105. NOT use this switch unless you have the problem, as unnecessary
  106. glitches will be introduced.
  107.  
  108. USING MC-SOUND FROM A DOS VIRTUAL MACHINE
  109. =========================================
  110. The SAY.EXE and RECORD.EXE programs cannot be run from a DOS virtual
  111. machine. The low level driver is disabled when Windows starts. Upon
  112. exit from Windows, the driver is re-enabled and can be used from DOS.
  113. Use ArtiSound to play and record voice files when in Windows.
  114.  
  115. ADDITIONAL INFORMATION FOR PROGRAMMERS
  116. ======================================
  117. Artisoft's device identification number has changed.  It is reflected in
  118. the ASNBRD.H file.
  119.  
  120. ArtiSound now supports the extended wave format structure. This new
  121. structure is defined as follows:
  122.  
  123. typedef struct extended_waveformat_tag {
  124.        WAVEFORMAT wf;
  125.        WORD  wBitPerSample;
  126.        WORD  cbExtraSize;
  127. } EXTWAVEFORMAT;
  128.  
  129. Additional information on the new RIFF format is available from Compuserve
  130. WINSDK forum or the Microsoft Multimedia BBS.
  131.  
  132.